home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / program / faq210s.zip / FAQ / IDXREF.SED < prev    next >
Text File  |  1995-10-16  |  527b  |  23 lines

  1. s/comment --- transform a list of nodenames followed by chapter ---/&/
  2. s/comment --- or section name, into a Sed script which changes  ---/&/
  3. s/comment --- node names into chapter numbers in nodenames.     ---/&/
  4.  
  5. 1i\
  6. /^\\* Menu:$/,$ {
  7.  
  8. /^@node[     ]/ {
  9.   N
  10.   s/\n/!!=!!/
  11.   /^@node  *Top/d
  12.   s/^@node  *\([^,][^,]*\),.*!!=!!@\([a-z][a-z]*\)[     ][     ]*\([0-9]\(\.*[0-9]\)*\).*/s|:  *\1\\.$|: \2 \3.|/
  13.   s/chapter \([0-9][0-9.]*\)/Chapter \1/
  14.   s/section \([0-9][0-9.]*\)/Section \1/
  15.   s/``/"/g
  16.   s/''/"/g
  17. }
  18.  
  19. $a\
  20. s/^\\* Menu:$//\
  21. }
  22.  
  23.